home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
MacWorld 1996 April
/
Macworld (1996-04).dmg
/
Shareware World
/
Entertainment
/
General
/
Xconq 7.0.1
/
lib
/
Makefile.in
< prev
next >
Wrap
Makefile
|
1995-08-22
|
2KB
|
75 lines
# Makefile for Xconq library.
# Copyright (C) 1994, 1995 Stanley T. Shebs.
# Xconq is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2, or (at your option)
# any later version.
prefix = /usr/games
exec_prefix = $(prefix)
bindir = $(exec_prefix)/bin
libdir = $(exec_prefix)/lib
datadir = $(prefix)/lib/xconq
mandir = $(prefix)/man
man6dir = $(mandir)/man6
infodir = $(prefix)/info
docdir = $(datadir)/doc
srcdir = .
srcroot = $(srcdir)/..
SHELL = /bin/sh
INSTALL = install -c
INSTALL_PROGRAM = $(INSTALL)
INSTALL_DATA = $(INSTALL)
# Host and target-dependent makefile fragments come in here.
####
# End of host and target-dependent makefile fragments.
IMFS = $(srcdir)/aircraft.imf \
$(srcdir)/arms.imf \
$(srcdir)/colors.imf \
$(srcdir)/emblems.imf \
$(srcdir)/fantasy.imf \
$(srcdir)/flags.imf \
$(srcdir)/insects.imf \
$(srcdir)/milsym.imf \
$(srcdir)/misc.imf \
$(srcdir)/sf.imf \
$(srcdir)/ships.imf \
$(srcdir)/standard.imf \
$(srcdir)/tanks.imf \
$(srcdir)/terrain.imf
all:
imf.dir: $(IMFS)
$(srcdir)/makedir.sh $(IMFS) | sed -e s,$(srcdir)/,, >>imf.tmp
$(srcdir)/../move-if-change imf.tmp imf.dir
install: all install-only
install-only:
srcroot=`cd $(srcroot); pwd`; export srcroot; \
for i in `ls $(srcdir)/*.dir $(srcdir)/*.g $(srcdir)/*.imf $(srcdir)/news.txt`; do \
echo $$i; \
$(INSTALL_DATA) $(srcdir)/$$i $(datadir); \
done
clean:
distclean: clean
rm -f Makefile config.status
extraclean: distclean
rm -f *~* .*~*
realclean: distclean
Makefile: Makefile.in $(host_makefile_frag) $(target_makefile_frag)
$(SHELL) config.status